func internal/strconv.mulLog10_2

6 uses

	internal/strconv (current package)
		ftoa.go#L159: 			digits = 1 + mulLog10_2(1+exp) + prec
		ftoa.go#L161: 			digits = 1 + prec - mulLog10_2(-exp)
		ftoadbox.go#L66: 	k0 := -mulLog10_2(exp)
		ftoadbox.go#L137: 	k0 := -mulLog10_2(exp)
		ftoafixed.go#L63: 	p := (digits - 1) - mulLog10_2(63+exp)
		math.go#L45: func mulLog10_2(x int) int {